home *** CD-ROM | disk | FTP | other *** search
/ Tech Arsenal 1 / Tech Arsenal (Arsenal Computer).ISO / tek-04 / timer11.zip / ZTIMER.PAS < prev    next >
Pascal/Delphi Source File  |  1992-04-20  |  903b  |  37 lines

  1. unit ZTimer;
  2.  
  3. { Zen Timer unit.  Interface to assembler code by Michael Abrash and Kendall
  4.   Bennett; TP interface written by Duncan Murdoch }
  5.  
  6. { Requires TP 6.0 or later; earlier versions will not link the .OBJ files. }
  7.  
  8. interface
  9.  
  10. procedure _PZTimerOn;
  11. procedure _PZTimerOff;
  12. procedure _PZTimerReport;
  13. function  _PZTimerCount : longint;
  14.  
  15. procedure _LZTimerOn;
  16. procedure _LZTimerOff;
  17. procedure _LZTimerReport;
  18. function  _LZTimerCount : longint;
  19.  
  20. implementation
  21.  
  22. {$L PZTimer.obj}
  23.  
  24. procedure _PZTimerOn;              external;
  25. procedure _PZTimerOff;             external;
  26. procedure _PZTimerReport;          external;
  27. function  _PZTimerCount : longint; external;
  28.  
  29. {$l lztimer.obj}
  30.  
  31. procedure _LZTimerOn;              external;
  32. procedure _LZTimerOff;             external;
  33. procedure _LZTimerReport;          external;
  34. function  _LZTimerCount : longint; external;
  35.  
  36. end.
  37.